home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / C and C++ / Libraries / File Dropper / File Dropper_1.1b2.abs < prev    next >
Encoding:
Text File  |  1994-03-31  |  2.5 KB  |  52 lines  |  [TEXT/R*ch]

  1. File Dropper 1.1b2
  2. Written by Troy Anderson
  3.  
  4. Copyright (c) 1992-1993, Troy Anderson; All Rights Reserved
  5.  
  6. What Is This Thing?
  7.  
  8. File Dropper is a THINK C 6.0 library that implements an application that you
  9. can drop files or folders onto to do batch operations on.  It handles the
  10. getting of the AppleEvents if running under System 7, the main event loop, and
  11. the menus.  You need only write the code that acts on the individual files.
  12.  
  13. New with version 1.1b2:
  14. o  Built "File Dropper π" in THINK C 6.0
  15. o  The cursor is NOT reset to an arrow after each call to SetStatusPercentage.
  16. o  If you return FALSE from the eStartup, eSFInitialize, or eAEInitialize
  17.    messages, File Dropper  will send you an eQuitting message and quit the
  18.    application.
  19. o  If you return FALSE from the eValidate message, File Dropper will skip any
  20.    remaining files in the current batch.
  21. o  If you return FALSE from an eDispose message, File Dropper will send you an
  22.    eQuitting message and quit the application.  Returning TRUE from an eDispose
  23.    message will cause File Dropper to continue running.  This behavior does NOT
  24.    depend upon which of eSFInitialize or eAEInitialize was sent to you.
  25. o  If you return TRUE from an eQuitting message, the File Dropper quits.  On the
  26.    other hand, if  you return FALSE from an eQuitting message, File Dropper
  27.    will quit.
  28. o  If you want the source code to File Dropper, send me money (see the end of
  29.    this document).
  30. o  Added an eUserCancelled message for when the user clicks Cancel in the status
  31.    box.
  32. o  Added an eIdle message.
  33. o  Added the ChangeStatusMessage function that lets you change the message in the
  34.    status dialog on the fly, during your processing of the file.
  35. o  Changed some things internally, so you can NOT call
  36.    InstallCustomGetFSSpecFunc, InstallCustomFileFilterFunc, or
  37.    InstallCustomDialogHookFunc from an eSFInitialize or  eAEInitialize message
  38.    any more, just from eStartup.
  39. o  Fixed a bug in the ErrorAlert function so that text relating to the error as
  40.    well as the word "Error." show up in the dialog.
  41. o  Made it simpler to support AboutBox functionality.  You just put text in STR#
  42.    resource 129, and it will be displayed in the warp stars.  To enable this
  43.    feature, return TRUE from the  eDoAboutBox message.
  44.  
  45.  
  46. New with version 1.1b1:
  47. o  You specify if you want the status dialog displayed while you are
  48. working on the file. Progress bar like Finder 7's that you update by
  49. specifying how far you are along with a percentage (0 - 100).  You
  50. specify if you want this, too.
  51.  
  52.